(Fskip_chars_forward): Fix doc typo.
authorGlenn Morris <rgm@gnu.org>
Fri, 20 Feb 2009 06:08:57 +0000 (06:08 +0000)
committerGlenn Morris <rgm@gnu.org>
Fri, 20 Feb 2009 06:08:57 +0000 (06:08 +0000)
src/syntax.c

index f50649e41e909ab930ef9a2bdb6aca353f306901..494bd16f8c0f575b686f6e5f4abbece6f24f1f9e 100644 (file)
@@ -1353,7 +1353,7 @@ DEFUN ("skip-chars-forward", Fskip_chars_forward, Sskip_chars_forward, 1, 2, 0,
        doc: /* Move point forward, stopping before a char not in STRING, or at pos LIM.
 STRING is like the inside of a `[...]' in a regular expression
 except that `]' is never special and `\\' quotes `^', `-' or `\\'
- (but not as the end of a range; quoting is never needed there).
+ (but not at the end of a range; quoting is never needed there).
 Thus, with arg "a-zA-Z", this skips letters stopping before first nonletter.
 With arg "^a-zA-Z", skips nonletters stopping before first letter.
 Char classes, e.g. `[:alpha:]', are supported.